/* General Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Top Bar Styling */
  .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-bottom: 1px solid #e6e5e3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  }
  
  .logo img {
  height: 55px;
  margin-left: 80px;
  padding: 10px;
  }
  
  .nav-links {
  display: flex;
  gap: 20px;
  margin-right: 60px;
  }
  
  .nav-links a {
  text-decoration: none;
  color: #212121;
  font-size: 16px;
  font-weight: bold;
  }
  
  .nav-links a:hover {
  color: #185adb;
  }
  
  .menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  }
  
  /* Side Menu Styling */
  .side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1100;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  }
  
  .side-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #212121;
  font-size: 18px;
  font-weight: bold;
  }
  
  .side-menu a:hover {
  color: #185adb;
  }
  
  .close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-icon {
    display: block;
    margin-right: 10px;
  }
  
  }
  
  /* Responsive Design */
  @media (max-width: 480px) {
    .nav-links {
      display: none;
    }
    .menu-icon {
      display: block;
      margin-right: 15px;
    }
    .logo img {
      height: 55px;
      margin-left: 20px;
      padding: 10px;
      }
    .top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      border-bottom: 1px solid #e6e5e3;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      }
    }